Add Dependabot configuration - #10
Merged
Merged
Conversation
Prep for the public open-source release (github/open-source-releases#710). Enable weekly Dependabot updates for the two ecosystems in this repo: - gomod, rooted at /go where the module lives. - github-actions, rooted at / for the workflow files. Keeps the Go dependencies and the (now SHA-pinned) workflow actions current once the repo is public.
There was a problem hiding this comment.
✅ Ready to approve
The Dependabot configuration matches the repo layout (/go module and workflows under .github/workflows) and is a low-risk, valid addition.
Note: this review does not count toward required approvals for merging.
Pull request overview
Adds a Dependabot configuration to support OSS-readiness by enabling automated weekly dependency update PRs for the repo’s Go module and GitHub Actions workflows.
Changes:
- Add weekly Dependabot updates for
gomoddependencies under/go. - Add weekly Dependabot updates for
github-actionsdependencies at repo root (/) to cover.github/workflows.
File summaries
| File | Description |
|---|---|
| .github/dependabot.yml | Introduces Dependabot schedules for Go modules and GitHub Actions with prefixed commit messages. |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 0
- Review effort level: Low
Note
Your feedback helps us improve the quality of this feature.
Please use 👍 or 👎 to tell us whether this assessment is correct.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
nodeselector
added a commit
that referenced
this pull request
Jul 8, 2026
Prep for the public open-source release (github/open-source-releases#710). Enable weekly Dependabot updates for the two ecosystems in this repo: - gomod, rooted at /go where the module lives. - github-actions, rooted at / for the workflow files. Keeps the Go dependencies and the (now SHA-pinned) workflow actions current once the repo is public.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Part of OSS-readiness prep for the public release — see github/open-source-releases#710.
What
Add
.github/dependabot.ymlwith weekly updates for the two ecosystems present in this repo:directory: /go(where the module lives)directory: /(workflow files under.github/workflows)Why
The audit flagged the missing Dependabot config. Pairs naturally with the SHA-pinning PR: once workflow actions are pinned by SHA, Dependabot keeps them current with visible version bumps.
Notes
One of three independent OSS-prep PRs.